body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #0b0b0b, #1a1a1a);
  color: #f5f5f5;
}

/* HERO */
.wealth-hero {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(120deg, gold, #d4af37, #fff5cc);
  color: #000;
  animation: shimmer 8s infinite alternate;
}

.wealth-hero h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 15px rgba(255,215,0,0.8);
}

/* SECTIONS */
section {
  padding: 80px 40px;
  text-align: center;
}

.tips-grid, .books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.tip-card, .book-card {
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
  box-shadow: 0 0 25px rgba(255,215,0,0.3);
  transition: transform 0.4s;
}

.tip-card:hover, .book-card:hover {
  transform: scale(1.05);
}

/* STORE */
.store-section .product-card {
  display: inline-block;
  padding: 40px;
  border-radius: 25px;
  background: linear-gradient(145deg, #111, #222);
  box-shadow: 0 0 40px rgba(0,255,255,0.3);
}

.buy-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, gold, #ffdd00);
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* SOCIAL */
.social-section a {
  margin: 15px;
  color: gold;
  text-decoration: none;
  font-size: 1.2rem;
}

/* FOOTER */
.wealth-footer {
  padding: 30px;
  opacity: 0.7;
}

/* ANIMATION */
@keyframes shimmer {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(40deg); }
}
